From 33347533ecca414f9de3dbc95265f8d4470aebcd Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Sat, 28 Nov 1998 02:07:44 +0000 Subject: [PATCH] GTK_BASIC and freeze/thaw explanaition --- docs/Changes-1.2.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/Changes-1.2.txt b/docs/Changes-1.2.txt index 83312b3dcd..7b6e529ecc 100644 --- a/docs/Changes-1.2.txt +++ b/docs/Changes-1.2.txt @@ -84,4 +84,19 @@ Incompatible Changes from GTK+-1.0 to GTK+-1.2: Window. The scrollbar policy is set on the scrolled window with gtk_scrolled_window_set_policy() and not on the child widgets (e.g. GtkCList's gtk_clist_set_policy() was removed). + +* the GTK_BASIC flag got removed, and with it the corresponding + macro and function GTK_WIDGET_BASIC() and gtk_widget_basic(). +* all freeze/thaw methods in gtk work in an incremental way now. + code portions like: + gboolean frozen; + frozen = GTK_CLIST_FROZEN (clist); + gtk_clist_freeze (clist); + [...] + if (!frozen) + gtk_clist_thaw (clist); + will not work anymore, they have to be modified to simply: + gtk_clist_freeze (clist); + [...] + gtk_clist_thaw (clist); -- 2.30.2